home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
recurs1a
/
rollover.htc
< prev
next >
Wrap
Text File
|
1999-07-11
|
522b
|
26 lines
<PUBLIC:COMPONENT>
<PUBLIC:ATTACH EVENT="onmouseover" ONEVENT="rollOn()" />
<PUBLIC:ATTACH EVENT="onmouseout" ONEVENT="rollOff()" />
<SCRIPT LANGUAGE="JScript">
function rollOn() {
with (runtimeStyle) {
cursor = "hand";
fontWeight = "bolder";
textDecoration = "underline";
}
event.cancelBubble = true;
}
function rollOff() {
with (runtimeStyle) {
cursor = "auto";
fontWeight = "normal";
textDecoration = "none";
}
event.cancelBubble = true;
}
</SCRIPT>
</PUBLIC:COMPONENT>